type crypto/tls.certificateMsgTLS13

10 uses

	crypto/tls (current package)
		conn.go#L1134: 			m = new(certificateMsgTLS13)
		handshake_client_tls13.go#L645: 	certMsg, ok := msg.(*certificateMsgTLS13)
		handshake_client_tls13.go#L760: 		if _, err := hs.c.writeHandshakeRecord(&certificateMsgTLS13{}, hs.transcript); err != nil {
		handshake_client_tls13.go#L776: 	certMsg := new(certificateMsgTLS13)
		handshake_messages.go#L1443: type certificateMsgTLS13 struct {
		handshake_messages.go#L1449: func (m *certificateMsgTLS13) marshal() ([]byte, error) {
		handshake_messages.go#L1505: func (m *certificateMsgTLS13) unmarshal(data []byte) bool {
		handshake_messages.go#L1506: 	*m = certificateMsgTLS13{}
		handshake_server_tls13.go#L845: 	certMsg := new(certificateMsgTLS13)
		handshake_server_tls13.go#L1058: 	certMsg, ok := msg.(*certificateMsgTLS13)